TextMessengerSettings

data class TextMessengerSettings(val type: NavigationSpec.TextMessenger.Type = Type.Plain, val recipients: List<String>, val subject: String? = null, val body: String? = null, val attachments: List<Uri> = emptyList())

Settings for the text message

Parameters

type

TextMessenger.Type of text message to send

recipients

List of recipients

subject

Optional subject of the message

body

Optional body of the message

attachments

List of Uri pointing to attachments to add

Constructors

Link copied to clipboard
constructor(type: NavigationSpec.TextMessenger.Type = Type.Plain, recipients: List<String>, subject: String? = null, body: String? = null, attachments: List<Uri> = emptyList())

Properties

Link copied to clipboard
Link copied to clipboard
val body: String? = null
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val subject: String? = null
Link copied to clipboard